home *** CD-ROM | disk | FTP | other *** search
/ Euroscene 2 / Euroscene 2.iso / USEFUL / Install AmigaGuide < prev    next >
Text File  |  1995-11-01  |  1KB  |  53 lines

  1.  
  2.  
  3. ; amigaguide Installer script. © THP/c!truS'95
  4.  
  5.       ; drugs/alcohol/pain/adrenalin. there must be other ways outta here.
  6.  
  7.  
  8. ; /******************************************************************************/
  9.  
  10.                                    ; Uh?
  11.  
  12.     (set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
  13.     (set #copying-amigaguide  "Copying AmigaGuide to sys:Utilities/")
  14.     (set #copying-amigaguidehelp "Copying Help.Guide to s:")
  15.  
  16. ; /******************************************************************************/
  17.  
  18.                     ; Enough kacking around, let's GO!
  19.  
  20. (copylib
  21.     (prompt "\n" #copying-amigaguidelib)
  22.     (help @copylib-help)
  23.     (source "libs/amigaguide.library")
  24.     (dest "libs:")
  25.     (confirm)
  26. )
  27.  
  28.  
  29. (copylib
  30.     (prompt "\n" #copying-amigaguide)
  31.     (help @copylib-help)
  32.     (source "utilities/Amigaguide")
  33.     (dest "sys:Utilities/")
  34.     (infos)
  35.     (confirm)
  36. )
  37.  
  38.  
  39. (copylib
  40.     (prompt "\n" #copying-amigaguidehelp)
  41.     (help @copylib-help)
  42.     (source "s/Help.Guide")
  43.     (dest "s:")
  44.     (infos)
  45.     (confirm)
  46. )
  47.  
  48.  
  49. (message "\nThe Amigaguide system for hypertext support has now been installed.")
  50.  
  51. (exit (quiet))
  52.  
  53.